home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 009 / skpats.arc / SK-PULSE.PAT < prev    next >
Text File  |  1985-10-01  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.        TITLE: Patching SideKick to default to pulse dialing
  8.      PRODUCT: Sidekick
  9.      VERSION: 1.11C
  10.           OS: All
  11.         DATE: 3-23-1985
  12.  
  13. SideKick's dialer defaults to tone dialing.  The user can use the dialer on a
  14. pulse-dialing system only by putting a "P" in front of the number to be dialed.
  15. This isn't so bad if you set up a phone directory, but it makes using the
  16. dialer's ability to pick phone numbers off of the screen rather clumsy.  This
  17. patch will set the default dialing mode to pulse dialing.
  18.  
  19. Borland chose to use the "ATTD" command sequence for Hayes-compatible modems
  20. (rather than the expected "ATDT").  Using DEBUG, we can search for the ATTD
  21. string:
  22.  
  23. -S 0000 FFF0 'ATTD'
  24. 185E:7EAA
  25.  
  26. If we do a dump around 7EAA, we find:
  27.  
  28. -D 7E60
  29. 185E:7E60  0D 50 54 30 31 32 33 34-35 36 37 38 39 28 24 24   .PT0123456789($$
  30. 185E:7E70  24 24 24 24 24 03 2D 28-29 24 24 24 24 24 24 24   $$$$$.-()$$$$$$$
  31. 185E:7E80  12 50 54 20 30 31 32 33-34 35 36 37 38 39 2D 28   .PT 0123456789-(
  32. 185E:7E90  29 2E 40 24 24 24 24 24-24 24 0A 30 31 32 33 34   ).@$$$$$$$.01234
  33. 185E:7EA0  35 36 37 38 39 24 24 24-24 24 41 54 54 44 20 00   56789$$$$$ATTD .
  34. 185E:7EB0  24 24 24 24 24 24 24 24-24 3B 0D 00 24 24 24 24   $$$$$$$$$;..$$$$
  35. 185E:7EC0  24 24 24 24 24 24 24 24-41 54 48 0D 00 24 24 24   $$$$$$$$ATH..$$$
  36. 185E:7ED0  24 24 24 24 24 24 24 FC-0E 07 2E 8A 0D 32 ED 47   $$$$$$$|.....2mG
  37.  
  38. The "ATH" at offset 7EC8 is the hangup command.
  39.  
  40. All that needs to be done is to change the "ATTD" string to "ATPD" using the
  41. DEBUG Edit command:
  42.  
  43. -E7EAA
  44. 185E:7EAA 41. 54. 54.50
  45.  
  46. and use the DEBUG Write command to write the patched file back to disk.
  47.  
  48. This zap will also work on the limited configurations of the program (SKN.COM or
  49. SKC.COM) by searching for the "ATTD" string in the appropriate .COM file.   The
  50. files, and the offset locations of the string are as follows:
  51.  
  52.            SKN.COM   6A09
  53.            SKC.COM   57CA
  54.  
  55. Other versions of SideKick can probably be zapped by searching for the "ATTD"
  56. string and replacing "ATTD" with "ATPD", although I haven't tried this with any
  57. version except for 1.11c.  Happy dialing!
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.